home *** CD-ROM | disk | FTP | other *** search
/ The Mac 1996 October / The Mac (October 1996).dmg / Web Authoring / HTML Voc 1.3 / HTML Vocabulary 1.3 / HTML Vocabulary 1.3.rsrc / TEXT_1500_Lists.txt < prev    next >
Encoding:
Text File  |  1996-05-28  |  1.7 KB  |  78 lines

  1.  
  2.  Lists    
  3.  
  4.  There are three different list styles. All of them can
  5.  include new lists.
  6.  
  7.    ‚Ä¢  unordered list
  8.  
  9.   2. ordered list
  10.  
  11.   definition list
  12.       text, text, text
  13.  
  14.  
  15.  Unordered list    
  16.  
  17. <UL [TYPE=DISC|CIRCLE|SQUARE]>
  18.  
  19. Stands for 'underordered list'. Starts a new underordered
  20.  list. The bullet (‚Ä¢) can be changed with TYPE, between
  21.  DISC (‚Ä¢), CIRCLE (¬∞) and SQUARE (‚Ǩ). Must end with </UL>
  22.  
  23.  <LI [TYPE=DISC|CIRCLE|SQUARE]>
  24.  Stands for 'list insert'. Starts a new line. Use it inside
  25.  a <UL> text. Must end with </LI>
  26.  
  27.  
  28.  Ordered list    
  29.  
  30.  
  31. <OL [TYPE=A|a|I|i] [START=n]>
  32.  
  33. Start a new ordered list in the same way as <UL>. TYPE
  34.  changes the numbers in the front of the entries between
  35.  A,B,C (A), a,b,c (a), I,II,III (I), i,ii,iii (i) and
  36.  1,2,3 (only <OL>). START starts the numeration at n.
  37.  Must end with </OL>
  38.  
  39.  
  40.  <LI [TYPE=A|a|I|i]>
  41.  Stands for 'list insert'. Works in the same way as in an
  42.  underordered list. Must end with </LI>
  43.  
  44.  Definition list    
  45.  
  46.  
  47. <DL>
  48.  
  49. Starts a definited list. Must end with </DL>
  50.  
  51.  <DT>
  52.  Stands for 'defined tag'. Insert a new 'header' in the
  53.  list. The text shows up in bold. Must end with </DT>
  54.  
  55.  <DD>
  56.  Use it to display normal text in a new line inside the list.
  57.  Must end with </DD>
  58.  
  59.  Menu list    
  60.  
  61.  
  62. There is also two other tag which looks the same as a list. This
  63.  is often used in ftp-pages, but isn't supported in all browsers.
  64.  
  65.  <MENU [DINGBAT=text] [CLEAR=align]>
  66.  Start the new menu list. DINGBAT is the name of an icon which
  67.  will start the line. Can be "text.document", a icon of a small
  68.  text file, "no" which is no dingbat at all or about 30 others.
  69.  
  70.  Directory list    
  71.  
  72.  <DIR>
  73.  About the same use as <UL>. Must end with </DIR>.
  74.  
  75.  <LI>
  76.  Start tag for a new list item inside the directory list.
  77.  Must end with </LI>.
  78.